a291dc5e5470a822991dd2c8c1424d25f29fd68c,kieker-tools/test/kieker/test/tools/junit/writeRead/explorviz/ExplorVizReader.java,ExplorVizReader,terminate,#boolean#,127

Before Change


	public void terminate(final boolean error) {
		this.log.info("Shutdown of ExplorVizReader requested.");
		this.terminated = true;
		this.readerThread.interrupt();
	}

	@Override

After Change


	public void terminate(final boolean error) {
		this.log.info("Shutdown of ExplorVizReader requested.");
		this.terminated = true;
		if (this.readerThread != null) {
			this.readerThread.interrupt();
		}
	}